home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / abba1bat.zip / CONFIGNO.BAT < prev    next >
DOS Batch File  |  1991-11-04  |  427b  |  24 lines

  1. @echo off
  2. rem this file: CONFIGNO.BAT
  3. rem
  4. rem (C) 1991 Abba Software Co.
  5. rem
  6. echo Deleting CONFIG.SYS and re-booting!
  7. C:
  8. if exist \config.sys goto delete-it
  9. echo *
  10. echo * error - config.sys file does not exist
  11. echo *
  12. goto end
  13. :delete-it
  14. cd\bats
  15. del  \config.sys             
  16. debug < reboot.deb > NUL
  17. echo *
  18. echo * error - debug not found or the file
  19. echo *         reboot.deb is missing.
  20. :end
  21. echo on
  22.  
  23.  
  24.